summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ts.h
blob: 39d51847ee4e981abbadb6f03226c1b46f533ecc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include "common/common_types.h"
#include "core/hle/service/service.h"

namespace Service::PTM {

class TS final : public ServiceFramework<TS> {
public:
    explicit TS(Core::System& system_);
    ~TS() override;

private:
    enum class Location : u8 {
        Internal,
        External,
    };

    void GetTemperature(Kernel::HLERequestContext& ctx);
    void GetTemperatureMilliC(Kernel::HLERequestContext& ctx);
};

} // namespace Service::PTM